Obsidian 插件 Tasks
简介:: 任务管理插件
常用查询语法
- 完成/未完成:
done
或not done
- 完成日期:
done before/after/on 日期
- 无到期日:
no due date
- 截止日期:
due before/after/on 日期
- 日期可使用
today, yesterday, tomorrow, next week, last Friday, in two weeks
等 - 路径
- 要搜寻:
path includes 路径
- 不搜寻:
path does not include 路径
- 要搜寻:
- 事项描述
description includes 字串
description does not include 字串
- 最靠近标题
heading includes 标题
heading does not include 标题
- 是否重复
is recurring
is not recurring
- 排除某个事项:
excludes 清单事项
- 限制显示事项数目:
limit to 数值 tasks
- 排序:
sort by (status|due|done|path|description)
- 显示样式隐藏
hide edit button
隐藏编辑按钮hide backlink
隐藏反向链接hide done date
隐藏完成日期hide due date
隐藏截止日期hide recurrence rule
隐藏重复规则hide task count
隐藏任务数量统计
参考示例
复刻插件侧边栏 Tasks Calendar Wrapper
## 待办事项
```tasks
not done
due on or after today
group by due
```
## 已过期
```tasks
not done
due before today
group by backlink
```
## 未安排
```tasks
not done
no due date
group by backlink
```
最近完成的任务
```tasks
done
hide edit button
hide postpone button
sort by done reverse
hide task count
status.type is DONE
limit 10
```
按文件夹分组的全部未完成任务
```tasks
not done
group by folder
```